FileChooserWidget: Fix leaks in .get_subtitle()
authorDaniel Boles <dboles@src.gnome.org>
Tue, 13 Mar 2018 00:19:51 +0000 (00:19 +0000)
committerDaniel Boles <dboles@src.gnome.org>
Tue, 13 Mar 2018 00:20:17 +0000 (00:20 +0000)
commit9aedafa39e77eca777ca0abe78636aa6d4b1aff2
treeeda7c4e422d93040cce8252be4dc7a6404944fd5
parentfc9dc97430ec276dfb804059fe74d1ea3d899455
FileChooserWidget: Fix leaks in .get_subtitle()

Now that subtitle's default value "Searching" for OPERATION_MODE_SEARCH
is duplicated as it should be, we cannot reassign other strings to it
anymore, as that resulted in the original dupe of "Searching" leaking.

Fix this by only assigning the dup'd "Searching" after trying to get
more specific values, not before. We therefore need to set it to NULL
during its declaration, and that means we needn't in the final else.
gtk/gtkfilechooserwidget.c